f5ae922e5899e5df39b9c23c500b93c9e907aeac,osgi/bundles/component/src/org/knopflerfish/bundle/component/ComponentConfiguration.java,ComponentConfiguration,activate,#Bundle#boolean#,110
Before Change
componentContext = null;
}
res.activationResult(false);
Activator.logError(component.bc, "Failed to instanciate: " + cclass, e);
throw new ComponentException("Failed to instanciate: " + cclass, e);
}
try {
After Change
}
if (err != null) {
res.activationResult(false);
Activator.logError(component.bc, "Failed to activate", err);
throw err;
}
if (cclass != null) {